home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-99 Pandemic Studios
- //
- // Dark Reign II - Shell Logic
- //
-
- CreateObjectType("Shell::Entry", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("TRUE");
- Action()
- {
- Cineractive()
- {
- At(0)
- {
- DisableShroud(1);
- Fade()
- {
- Time(0, 1, 4);
- Direction("up");
- }
- SetBookmark()
- {
- Name("Main::Init");
- }
- }
- }
- Cmd("iface.sendnotifyevent Shell::EventHandler Main::Init");
- }
- }
- }
-
-